home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / Phaser.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  71 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Phaser.h - Phaser effect
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef PHASER_H
  24. #define PHASER_H
  25. #include "../globals.h"
  26. #include "Effect.h"
  27. #include "EffectLFO.h"
  28.  
  29. #define MAX_PHASER_STAGES 12
  30. class Phaser:public Effect {
  31.     public:
  32.     Phaser(int insetion_,REALTYPE *efxoutl_,REALTYPE *efxoutr_);
  33.     ~Phaser();
  34.     void out(REALTYPE *smpsl,REALTYPE *smpsr);
  35.         void setpreset(unsigned char npreset);
  36.     void changepar(int npar,unsigned char value);
  37.     unsigned char getpar(int npar);
  38.     void cleanup();
  39.     void setdryonly();
  40.         
  41.     private:
  42.     //Parametrii Phaser
  43.     EffectLFO lfo;//lfo-ul Phaser
  44.     unsigned char Pvolume;
  45.     unsigned char Ppanning;
  46.     unsigned char Pdepth;//the depth of the Phaser
  47.     unsigned char Pfb;//feedback
  48.     unsigned char Plrcross;//feedback
  49.     unsigned char Pstages;
  50.     unsigned char Poutsub;//if I wish to substract the output instead of the adding it
  51.     unsigned char Pphase;
  52.     
  53.     //Control Parametrii
  54.     void setvolume(unsigned char Pvolume);
  55.     void setpanning(unsigned char Ppanning);
  56.     void setdepth(unsigned char Pdepth);
  57.     void setfb(unsigned char Pfb);
  58.     void setlrcross(unsigned char Plrcross);
  59.     void setstages(unsigned char Pstages);
  60.     void setphase(unsigned char Pphase);
  61.     
  62.     //Valorile interne
  63.     int insertion;
  64.     REALTYPE panning,fb,depth,lrcross,fbl,fbr,phase;
  65.     REALTYPE *oldl,*oldr;
  66.     REALTYPE oldlgain,oldrgain;
  67. };
  68.  
  69. #endif
  70.  
  71.